-
Notifications
You must be signed in to change notification settings - Fork 7.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(editor): Console error in ActionsMode when searching for action and pressing enter (no-changelog) #9292
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n8n-assistant
bot
added
community
Authored by a community member
ui
Enhancement in /editor-ui or /design-system
labels
May 2, 2024
alexgrozav
approved these changes
Jun 20, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution! 🙏
netroy
changed the title
fix: console error in ActionsMode when searching for action and pressing enter.
fix(editor): Console error in ActionsMode when searching for action and pressing enter (no-changelog)
Jun 20, 2024
netroy
approved these changes
Jun 20, 2024
longnz
added a commit
to AcclaroInc/workflow-automation
that referenced
this pull request
Jun 21, 2024
* 'master' of github.com:n8n-io/n8n: (380 commits) feat(Anthropic Chat Model Node): Add support for Claude 3.5 Sonnet (n8n-io#9832) refactor(core): Remove inferral of execution status (no-changelog) (n8n-io#9829) refactor(core): Log denials from subworkflow caller policy (no-changelog) (n8n-io#9827) fix(Zulip Node): Fix a typo preventing some messages from updating (n8n-io#7078) 🚀 Release 1.47.0 (n8n-io#9826) ci: Fix repository url for provenance checks (no-changelog) (n8n-io#9825) docs: Update docs links in the HTTP node (no-changelog) (n8n-io#9188) feat(Pipedrive Node): Add sort field for get all persons (n8n-io#8138) ci: Add opencontainer image spec labels to the release Dockerfile (no-changelog) (n8n-io#9822) fix(core): Upgrade `ws` to address CVE-2024-37890 (n8n-io#9801) ci: Fix ARM custom images (no-changelog) (n8n-io#9821) fix: Get workflow not returning home project and shared projects (no-changelog) (n8n-io#9815) fix(AWS SES Node): Fix issue with email aliases not working for sending from or sending to (n8n-io#9811) fix(Google Sheets Node): Check for column names changes before upsert, append, update (n8n-io#9649) fix(MongoDB Node): Correct typo in MongoDbProperties (no-changelog) (n8n-io#9587) fix(editor): Console error in ActionsMode when searching for action and pressing enter (no-changelog) (n8n-io#9292) fix(Airtable Node): Make multipleRecordLinks editable in fields (n8n-io#9608) refactor(editor): Refactor code editors to composition API (no-changelog) (n8n-io#9757) refactor: Correct spelling mistakes (no-changelog) (n8n-io#9305) fix(editor): Align all cell contents to the top in RunDataTable (no-changelog) (n8n-io#3889) ...
longnz
added a commit
to AcclaroInc/workflow-automation
that referenced
this pull request
Jun 21, 2024
* n8n-io-master: (380 commits) feat(Anthropic Chat Model Node): Add support for Claude 3.5 Sonnet (n8n-io#9832) refactor(core): Remove inferral of execution status (no-changelog) (n8n-io#9829) refactor(core): Log denials from subworkflow caller policy (no-changelog) (n8n-io#9827) fix(Zulip Node): Fix a typo preventing some messages from updating (n8n-io#7078) 🚀 Release 1.47.0 (n8n-io#9826) ci: Fix repository url for provenance checks (no-changelog) (n8n-io#9825) docs: Update docs links in the HTTP node (no-changelog) (n8n-io#9188) feat(Pipedrive Node): Add sort field for get all persons (n8n-io#8138) ci: Add opencontainer image spec labels to the release Dockerfile (no-changelog) (n8n-io#9822) fix(core): Upgrade `ws` to address CVE-2024-37890 (n8n-io#9801) ci: Fix ARM custom images (no-changelog) (n8n-io#9821) fix: Get workflow not returning home project and shared projects (no-changelog) (n8n-io#9815) fix(AWS SES Node): Fix issue with email aliases not working for sending from or sending to (n8n-io#9811) fix(Google Sheets Node): Check for column names changes before upsert, append, update (n8n-io#9649) fix(MongoDB Node): Correct typo in MongoDbProperties (no-changelog) (n8n-io#9587) fix(editor): Console error in ActionsMode when searching for action and pressing enter (no-changelog) (n8n-io#9292) fix(Airtable Node): Make multipleRecordLinks editable in fields (n8n-io#9608) refactor(editor): Refactor code editors to composition API (no-changelog) (n8n-io#9757) refactor: Correct spelling mistakes (no-changelog) (n8n-io#9305) fix(editor): Align all cell contents to the top in RunDataTable (no-changelog) (n8n-io#3889) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
When entering the node search right tab and searching for example "Google Analytics" and then searching through Google Analytics Actions options and entering some gibberish text and then hitting "Enter" Key an error appears where says
Cannot read key of undefined.
This PR simply blocks the function from executing if no action is found the emit call will not get executed, I'm sure there might be couple places where we need to place this if check just to make sure. however I just found this for now.
Review / Merge checklist